home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #12 / K-CD-12-2002.ISO / Tools / K-CS.dcr / 00077_UI Push2.ls < prev    next >
Encoding:
Text File  |  2002-04-19  |  2.1 KB  |  53 lines

  1. property UpCM, DownCM, PressCM, UpNum, DownNum, PressNum, button_active, RunCommand
  2.  
  3. on mouseDown me
  4.   puppetSound("NyKnap")
  5. end
  6.  
  7. on mouseUp me
  8.   set the member of sprite the spriteNum of me to member the DownCM of me
  9.   do(the RunCommand of me)
  10. end
  11.  
  12. on mouseEnter me
  13.   if not (the button_active of me) then
  14.     set the member of sprite the spriteNum of me to member the DownCM of me
  15.     set the button_active of me to 1
  16.   end if
  17. end
  18.  
  19. on mouseLeave me
  20.   if the button_active of me then
  21.     set the member of sprite the spriteNum of me to member the UpCM of me
  22.     set the button_active of me to 0
  23.   end if
  24. end
  25.  
  26. on mouseUpOutSide me
  27.   set the member of sprite the spriteNum of me to member the UpCM of me
  28.   set the button_active of me to 0
  29. end
  30.  
  31. on beginSprite me
  32.   set the UpCM of me to the member of sprite the spriteNum of me
  33.   set the UpNum of me to the number of member UpCM
  34.   set the DownNum of me to the number of member DownCM
  35.   set the button_active of me to 0
  36. end
  37.  
  38. on getPropertyDescriptionList
  39.   if the currentSpriteNum = 0 then
  40.     set memdefault to 0
  41.   else
  42.     set memref to the member of sprite the currentSpriteNum
  43.     set castLibNum to the castLibNum of memref
  44.     set memdefault to member "Lys Knap" of castLib "VConst"
  45.   end if
  46.   set p_list to [#DownCM: [#comment: "Hilite Image:", #format: #graphic, #default: memdefault], #RunCommand: [#comment: "Command to run:", #format: #text, #default: "beep"]]
  47.   return p_list
  48. end
  49.  
  50. on getBehaviorDescription
  51.   return "Makes a sprite work as a pushbutton with automatic highlighting and mouse tracking. The sprite's initial castmember represents the button's normal state." & RETURN & "PARAMETERS:" & RETURN & "ΓÇó Hilite Image - Choose the cast member to display when the button is pressed. The default value is the cast member immedietly following the sprite's current cast member." & RETURN & "ΓÇó Activated image - image displayed when the user clicks the button. Default value is the cast member number two from the current cast member." & RETURN & "ΓÇó Operation to execute. This command will be run on a MouseUp event (user releases mouse button over this button). Use it to switch frame, run external programs etc."
  52. end
  53.